home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds3100.md / devConfig.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  69 lines

  1. /* 
  2.  * devConfig.c --
  3.  *
  4.  *    Configuration table for the devices in the system.  There is
  5.  *    a table for the possible controllers in the system, and
  6.  *    then a table for devices.  Devices are implicitly associated
  7.  *    with a controller.  This file should be automatically generated
  8.  *    by a config program, but it isn't.
  9.  *
  10.  *    Copyright (C) 1989 Digital Equipment Corporation.
  11.  *    Permission to use, copy, modify, and distribute this software and
  12.  *    its documentation for any purpose and without fee is hereby granted,
  13.  *    provided that the above copyright notice appears in all copies.  
  14.  *    Digital Equipment Corporation makes no representations about the
  15.  *    suitability of this software for any purpose.  It is provided "as is"
  16.  *    without express or implied warranty.
  17.  */
  18.  
  19. #ifndef lint
  20. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds3100.md/devConfig.c,v 9.2 90/11/27 13:34:12 mgbaker Exp $ SPRITE (Berkeley)";
  21. #endif not lint
  22.  
  23. #include "sprite.h"
  24. #include "devInt.h"
  25. #include "scsiHBA.h"
  26. #include "fs.h"
  27. #include "devTypes.h"
  28.  
  29. /*
  30.  * Per device include files.
  31.  */
  32. #include "sii.h"
  33.  
  34. /*
  35.  * The controller configuration table.
  36.  */
  37. DevConfigController devCntrlr[] = {
  38.    /* Name    Address        ID    InitProc    IntrRoutine. */
  39.     { "SII",    0xBA000000,      0,      DevSIIInit,     Dev_SIIIntr },
  40. };
  41. int devNumConfigCntrlrs = sizeof(devCntrlr) / sizeof(DevConfigController);
  42.  
  43. /*
  44.  * Table of SCSI HBA types attached to this system.
  45.  */
  46.  
  47. ScsiDevice *((*devScsiAttachProcs[])()) = {
  48.     DevSIIAttachDevice,        /* SCSI Controller type 0. */
  49. };
  50. int devScsiNumHBATypes = sizeof(devScsiAttachProcs) / 
  51.              sizeof(devScsiAttachProcs[0]);
  52.  
  53. /*
  54.  * A list of disk devices that is used when probing for a root partition.
  55.  * Note that we put the default partition as partition C so as to use the
  56.  * entire disk.
  57.  */
  58. Fs_Device devFsDefaultDiskPartitions[] = {
  59.     { -1, SCSI_MAKE_DEVICE_TYPE(DEV_SCSI_DISK, DEV_SII_HBA, 0, 0, 0, 0),
  60.           SCSI_MAKE_DEVICE_UNIT(DEV_SCSI_DISK, DEV_SII_HBA, 0, 0, 0, 0),
  61.                 (ClientData) NIL },
  62.     { -1, SCSI_MAKE_DEVICE_TYPE(DEV_SCSI_DISK, DEV_SII_HBA, 0, 0, 0, 2),
  63.           SCSI_MAKE_DEVICE_UNIT(DEV_SCSI_DISK, DEV_SII_HBA, 0, 0, 0, 2),
  64.                 (ClientData) NIL },
  65.     };
  66. int devNumDefaultDiskPartitions = sizeof(devFsDefaultDiskPartitions) /
  67.                           sizeof(Fs_Device);
  68.  
  69.